Declare @Id Int                               
Select @Id = Id From sysobjects Where Name = 'RepNoskheh'
if not Exists(SELECT * FROM syscolumns WHERE id = @Id and Name = 'Date')
  Alter Table dbo.RepNoskheh Add Date SMALLDATETIME DEFAULT(GETDATE())